home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / FourByFour / instructions.txt.z / instructions.txt
Encoding:
Text File  |  2003-08-08  |  3.7 KB  |  94 lines

  1. /*
  2.  *    @(#)instructions.txt 1.5 01/06/20 16:18:06
  3.  *
  4.  * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40.                     Four By Four
  41.  
  42. Description:
  43.  
  44.      A three dimensional game of tic-tac-toe on a 4x4x4 cube.
  45.  
  46. Object:
  47.  
  48.      Be the first to score four in a row.
  49.  
  50. Instructions:
  51.  
  52.      1.  It's you versus the computer.
  53.  
  54.      2.  There are five skill levels. Press the "Skill Level" button to select your level
  55.           of play. The program defaults to the hardest level. Changing the skill level in
  56.           the middle of a game will force the start of a new game.
  57.  
  58.      3.  The screen on the left is a 3D window. A mouse drag in this window will rotate the 
  59.           view to any desired position.
  60.  
  61.      4.  The screen on the right is a 2D window which displays all 18 faces that exist in the 
  62.           4x4x4 array.
  63.  
  64.      5.  Click on any of the small gray spheres (in either the 2D or 3D window) to select a position. 
  65.  
  66.      6.  Positions owned by you will be marked in red. Positions owned by the computer will be 
  67.           marked in blue.
  68.  
  69.      7.  Click the "Undo Move" button to take back a move.
  70.  
  71.      8.  Clicking on any of words "Face X" in the 2D window will cause that particular face to highlight
  72.           in the 3D window. Clicking the word again will un-highlight the face.
  73.  
  74.      9.  The final score is based on skill level, number of moves, and time. Select the button
  75.           "High Scores" to see a list of the top 20 scores. There is no penalty for using the
  76.           undo button.
  77.  
  78.     10. Good luck.
  79.  
  80. General Strategy:
  81.  
  82.      1.  There are a 64 positions from which to choose. In total, there are 72 possible winning 
  83.           combinations. 
  84.  
  85.      2.  The outer four corners and the inner "core" of eight have the most winning combinations,
  86.           7 each, and should perhaps be chosen first.
  87.  
  88.      3.  Use the 2D window to keep an eye on all the faces.
  89.  
  90.      4.  The computer plays well at the highest skill level (the default). There are, however,
  91.           faults in it's logic that can be exploited. Thus the human player can win even at the
  92.           highest skill level. In the beginning, however, you may want to start at the lower skill
  93.           levels and work your way up. 
  94.